home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ McAfee Trashguard 1.xpl < prev    next >
Text File  |  2001-11-27  |  2KB  |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH 1"="Appearance\Desktop\Icons\'Recycle Bin' Options"
  5. "NAME"="McAfee Trashguard"
  6. "VERSION"="1.0"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Enable McAfee Trashguard page in Recycle Bin Properties"
  9. "DESCRIPTION 1"="This option lets you enable or disable the extra page McAfee Trashguard adds to the Properties dialog for the Recycle Bin." 
  10. "DESCRIPTION 2"="To enable it, place a tick in the box, and to disable it, clear the tick."
  11. "DESCRIPTION 3"="Note: Even if you disable the page in Recycle Bin Properties, you can still access the page through the Nuts & Bolts program."
  12. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  13. "CONTACTURL"="http://www.xteq.com/"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"=""
  16.  
  17. sP="HKCR\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\shellex\PropertySheetHandlers\{4d3744c0-7ec1-11d0-b599-10005a11ba95}\"
  18. sC="HKCR\CLSID\{4d3744c0-7ec1-11d0-b599-10005a11ba95}\"
  19.  
  20. Sub Plugin_Initialize 
  21.  j=RegPathExists(sC)
  22.  if j=false then
  23.   Call Disable()
  24.  else
  25.   i=RegPathExists(sP)
  26.   if i=true then
  27.    Call SetUIElement(1,true)
  28.   end if
  29.  end if
  30. End Sub
  31.  
  32. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  33.  b=GetUIElement(1)
  34.  if b=true then
  35.   Call RegWriteValue(sP & "/@","",1)
  36.  else
  37.   t=RegPathExists(sP)
  38.   If t=true then
  39.    u=RegValueExists(sP & "\@")
  40.    if u=true then
  41.     Call RegDeleteValue(sP & "\@")
  42.    end if
  43.    Call RegDeletePath(sP)
  44.   end if
  45.  end if
  46. End Sub
  47.  
  48. Sub Plugin_Terminate 
  49. End Sub